(0) Obligation:

Runtime Complexity TRS:
The TRS R consists of the following rules:

isEmpty(nil) → true
isEmpty(cons(x, xs)) → false
last(cons(x, nil)) → x
last(cons(x, cons(y, ys))) → last(cons(y, ys))
dropLast(nil) → nil
dropLast(cons(x, nil)) → nil
dropLast(cons(x, cons(y, ys))) → cons(x, dropLast(cons(y, ys)))
append(nil, ys) → ys
append(cons(x, xs), ys) → cons(x, append(xs, ys))
reverse(xs) → rev(xs, nil)
rev(xs, ys) → if(isEmpty(xs), dropLast(xs), append(ys, last(xs)), ys)
if(true, xs, ys, zs) → zs
if(false, xs, ys, zs) → rev(xs, ys)

Rewrite Strategy: FULL

(1) RenamingProof (EQUIVALENT transformation)

Renamed function symbols to avoid clashes with predefined symbol.

(2) Obligation:

Runtime Complexity Relative TRS:
The TRS R consists of the following rules:

isEmpty(nil) → true
isEmpty(cons(x, xs)) → false
last(cons(x, nil)) → x
last(cons(x, cons(y, ys))) → last(cons(y, ys))
dropLast(nil) → nil
dropLast(cons(x, nil)) → nil
dropLast(cons(x, cons(y, ys))) → cons(x, dropLast(cons(y, ys)))
append(nil, ys) → ys
append(cons(x, xs), ys) → cons(x, append(xs, ys))
reverse(xs) → rev(xs, nil)
rev(xs, ys) → if(isEmpty(xs), dropLast(xs), append(ys, last(xs)), ys)
if(true, xs, ys, zs) → zs
if(false, xs, ys, zs) → rev(xs, ys)

S is empty.
Rewrite Strategy: FULL

(3) TypeInferenceProof (BOTH BOUNDS(ID, ID) transformation)

Infered types.

(4) Obligation:

TRS:
Rules:
isEmpty(nil) → true
isEmpty(cons(x, xs)) → false
last(cons(x, nil)) → x
last(cons(x, cons(y, ys))) → last(cons(y, ys))
dropLast(nil) → nil
dropLast(cons(x, nil)) → nil
dropLast(cons(x, cons(y, ys))) → cons(x, dropLast(cons(y, ys)))
append(nil, ys) → ys
append(cons(x, xs), ys) → cons(x, append(xs, ys))
reverse(xs) → rev(xs, nil)
rev(xs, ys) → if(isEmpty(xs), dropLast(xs), append(ys, last(xs)), ys)
if(true, xs, ys, zs) → zs
if(false, xs, ys, zs) → rev(xs, ys)

Types:
isEmpty :: nil:cons → true:false
nil :: nil:cons
true :: true:false
cons :: nil:cons → nil:cons → nil:cons
false :: true:false
last :: nil:cons → nil:cons
dropLast :: nil:cons → nil:cons
append :: nil:cons → nil:cons → nil:cons
reverse :: nil:cons → nil:cons
rev :: nil:cons → nil:cons → nil:cons
if :: true:false → nil:cons → nil:cons → nil:cons → nil:cons
hole_true:false1_0 :: true:false
hole_nil:cons2_0 :: nil:cons
gen_nil:cons3_0 :: Nat → nil:cons

(5) OrderProof (LOWER BOUND(ID) transformation)

Heuristically decided to analyse the following defined symbols:
last, dropLast, append, rev

They will be analysed ascendingly in the following order:
last < rev
dropLast < rev
append < rev

(6) Obligation:

TRS:
Rules:
isEmpty(nil) → true
isEmpty(cons(x, xs)) → false
last(cons(x, nil)) → x
last(cons(x, cons(y, ys))) → last(cons(y, ys))
dropLast(nil) → nil
dropLast(cons(x, nil)) → nil
dropLast(cons(x, cons(y, ys))) → cons(x, dropLast(cons(y, ys)))
append(nil, ys) → ys
append(cons(x, xs), ys) → cons(x, append(xs, ys))
reverse(xs) → rev(xs, nil)
rev(xs, ys) → if(isEmpty(xs), dropLast(xs), append(ys, last(xs)), ys)
if(true, xs, ys, zs) → zs
if(false, xs, ys, zs) → rev(xs, ys)

Types:
isEmpty :: nil:cons → true:false
nil :: nil:cons
true :: true:false
cons :: nil:cons → nil:cons → nil:cons
false :: true:false
last :: nil:cons → nil:cons
dropLast :: nil:cons → nil:cons
append :: nil:cons → nil:cons → nil:cons
reverse :: nil:cons → nil:cons
rev :: nil:cons → nil:cons → nil:cons
if :: true:false → nil:cons → nil:cons → nil:cons → nil:cons
hole_true:false1_0 :: true:false
hole_nil:cons2_0 :: nil:cons
gen_nil:cons3_0 :: Nat → nil:cons

Generator Equations:
gen_nil:cons3_0(0) ⇔ nil
gen_nil:cons3_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons3_0(x))

The following defined symbols remain to be analysed:
last, dropLast, append, rev

They will be analysed ascendingly in the following order:
last < rev
dropLast < rev
append < rev

(7) RewriteLemmaProof (LOWER BOUND(ID) transformation)

Proved the following rewrite lemma:
last(gen_nil:cons3_0(+(1, n5_0))) → gen_nil:cons3_0(0), rt ∈ Ω(1 + n50)

Induction Base:
last(gen_nil:cons3_0(+(1, 0))) →RΩ(1)
nil

Induction Step:
last(gen_nil:cons3_0(+(1, +(n5_0, 1)))) →RΩ(1)
last(cons(nil, gen_nil:cons3_0(n5_0))) →IH
gen_nil:cons3_0(0)

We have rt ∈ Ω(n1) and sz ∈ O(n). Thus, we have ircR ∈ Ω(n).

(8) Complex Obligation (BEST)

(9) Obligation:

TRS:
Rules:
isEmpty(nil) → true
isEmpty(cons(x, xs)) → false
last(cons(x, nil)) → x
last(cons(x, cons(y, ys))) → last(cons(y, ys))
dropLast(nil) → nil
dropLast(cons(x, nil)) → nil
dropLast(cons(x, cons(y, ys))) → cons(x, dropLast(cons(y, ys)))
append(nil, ys) → ys
append(cons(x, xs), ys) → cons(x, append(xs, ys))
reverse(xs) → rev(xs, nil)
rev(xs, ys) → if(isEmpty(xs), dropLast(xs), append(ys, last(xs)), ys)
if(true, xs, ys, zs) → zs
if(false, xs, ys, zs) → rev(xs, ys)

Types:
isEmpty :: nil:cons → true:false
nil :: nil:cons
true :: true:false
cons :: nil:cons → nil:cons → nil:cons
false :: true:false
last :: nil:cons → nil:cons
dropLast :: nil:cons → nil:cons
append :: nil:cons → nil:cons → nil:cons
reverse :: nil:cons → nil:cons
rev :: nil:cons → nil:cons → nil:cons
if :: true:false → nil:cons → nil:cons → nil:cons → nil:cons
hole_true:false1_0 :: true:false
hole_nil:cons2_0 :: nil:cons
gen_nil:cons3_0 :: Nat → nil:cons

Lemmas:
last(gen_nil:cons3_0(+(1, n5_0))) → gen_nil:cons3_0(0), rt ∈ Ω(1 + n50)

Generator Equations:
gen_nil:cons3_0(0) ⇔ nil
gen_nil:cons3_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons3_0(x))

The following defined symbols remain to be analysed:
dropLast, append, rev

They will be analysed ascendingly in the following order:
dropLast < rev
append < rev

(10) RewriteLemmaProof (LOWER BOUND(ID) transformation)

Proved the following rewrite lemma:
dropLast(gen_nil:cons3_0(+(1, n198_0))) → gen_nil:cons3_0(n198_0), rt ∈ Ω(1 + n1980)

Induction Base:
dropLast(gen_nil:cons3_0(+(1, 0))) →RΩ(1)
nil

Induction Step:
dropLast(gen_nil:cons3_0(+(1, +(n198_0, 1)))) →RΩ(1)
cons(nil, dropLast(cons(nil, gen_nil:cons3_0(n198_0)))) →IH
cons(nil, gen_nil:cons3_0(c199_0))

We have rt ∈ Ω(n1) and sz ∈ O(n). Thus, we have ircR ∈ Ω(n).

(11) Complex Obligation (BEST)

(12) Obligation:

TRS:
Rules:
isEmpty(nil) → true
isEmpty(cons(x, xs)) → false
last(cons(x, nil)) → x
last(cons(x, cons(y, ys))) → last(cons(y, ys))
dropLast(nil) → nil
dropLast(cons(x, nil)) → nil
dropLast(cons(x, cons(y, ys))) → cons(x, dropLast(cons(y, ys)))
append(nil, ys) → ys
append(cons(x, xs), ys) → cons(x, append(xs, ys))
reverse(xs) → rev(xs, nil)
rev(xs, ys) → if(isEmpty(xs), dropLast(xs), append(ys, last(xs)), ys)
if(true, xs, ys, zs) → zs
if(false, xs, ys, zs) → rev(xs, ys)

Types:
isEmpty :: nil:cons → true:false
nil :: nil:cons
true :: true:false
cons :: nil:cons → nil:cons → nil:cons
false :: true:false
last :: nil:cons → nil:cons
dropLast :: nil:cons → nil:cons
append :: nil:cons → nil:cons → nil:cons
reverse :: nil:cons → nil:cons
rev :: nil:cons → nil:cons → nil:cons
if :: true:false → nil:cons → nil:cons → nil:cons → nil:cons
hole_true:false1_0 :: true:false
hole_nil:cons2_0 :: nil:cons
gen_nil:cons3_0 :: Nat → nil:cons

Lemmas:
last(gen_nil:cons3_0(+(1, n5_0))) → gen_nil:cons3_0(0), rt ∈ Ω(1 + n50)
dropLast(gen_nil:cons3_0(+(1, n198_0))) → gen_nil:cons3_0(n198_0), rt ∈ Ω(1 + n1980)

Generator Equations:
gen_nil:cons3_0(0) ⇔ nil
gen_nil:cons3_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons3_0(x))

The following defined symbols remain to be analysed:
append, rev

They will be analysed ascendingly in the following order:
append < rev

(13) RewriteLemmaProof (LOWER BOUND(ID) transformation)

Proved the following rewrite lemma:
append(gen_nil:cons3_0(n545_0), gen_nil:cons3_0(b)) → gen_nil:cons3_0(+(n545_0, b)), rt ∈ Ω(1 + n5450)

Induction Base:
append(gen_nil:cons3_0(0), gen_nil:cons3_0(b)) →RΩ(1)
gen_nil:cons3_0(b)

Induction Step:
append(gen_nil:cons3_0(+(n545_0, 1)), gen_nil:cons3_0(b)) →RΩ(1)
cons(nil, append(gen_nil:cons3_0(n545_0), gen_nil:cons3_0(b))) →IH
cons(nil, gen_nil:cons3_0(+(b, c546_0)))

We have rt ∈ Ω(n1) and sz ∈ O(n). Thus, we have ircR ∈ Ω(n).

(14) Complex Obligation (BEST)

(15) Obligation:

TRS:
Rules:
isEmpty(nil) → true
isEmpty(cons(x, xs)) → false
last(cons(x, nil)) → x
last(cons(x, cons(y, ys))) → last(cons(y, ys))
dropLast(nil) → nil
dropLast(cons(x, nil)) → nil
dropLast(cons(x, cons(y, ys))) → cons(x, dropLast(cons(y, ys)))
append(nil, ys) → ys
append(cons(x, xs), ys) → cons(x, append(xs, ys))
reverse(xs) → rev(xs, nil)
rev(xs, ys) → if(isEmpty(xs), dropLast(xs), append(ys, last(xs)), ys)
if(true, xs, ys, zs) → zs
if(false, xs, ys, zs) → rev(xs, ys)

Types:
isEmpty :: nil:cons → true:false
nil :: nil:cons
true :: true:false
cons :: nil:cons → nil:cons → nil:cons
false :: true:false
last :: nil:cons → nil:cons
dropLast :: nil:cons → nil:cons
append :: nil:cons → nil:cons → nil:cons
reverse :: nil:cons → nil:cons
rev :: nil:cons → nil:cons → nil:cons
if :: true:false → nil:cons → nil:cons → nil:cons → nil:cons
hole_true:false1_0 :: true:false
hole_nil:cons2_0 :: nil:cons
gen_nil:cons3_0 :: Nat → nil:cons

Lemmas:
last(gen_nil:cons3_0(+(1, n5_0))) → gen_nil:cons3_0(0), rt ∈ Ω(1 + n50)
dropLast(gen_nil:cons3_0(+(1, n198_0))) → gen_nil:cons3_0(n198_0), rt ∈ Ω(1 + n1980)
append(gen_nil:cons3_0(n545_0), gen_nil:cons3_0(b)) → gen_nil:cons3_0(+(n545_0, b)), rt ∈ Ω(1 + n5450)

Generator Equations:
gen_nil:cons3_0(0) ⇔ nil
gen_nil:cons3_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons3_0(x))

The following defined symbols remain to be analysed:
rev

(16) RewriteLemmaProof (LOWER BOUND(ID) transformation)

Proved the following rewrite lemma:
rev(gen_nil:cons3_0(n1160_0), gen_nil:cons3_0(0)) → gen_nil:cons3_0(0), rt ∈ Ω(1 + n11600 + n116002)

Induction Base:
rev(gen_nil:cons3_0(0), gen_nil:cons3_0(0)) →RΩ(1)
if(isEmpty(gen_nil:cons3_0(0)), dropLast(gen_nil:cons3_0(0)), append(gen_nil:cons3_0(0), last(gen_nil:cons3_0(0))), gen_nil:cons3_0(0)) →RΩ(1)
if(true, dropLast(gen_nil:cons3_0(0)), append(gen_nil:cons3_0(0), last(gen_nil:cons3_0(0))), gen_nil:cons3_0(0)) →RΩ(1)
if(true, nil, append(gen_nil:cons3_0(0), last(gen_nil:cons3_0(0))), gen_nil:cons3_0(0)) →RΩ(1)
if(true, nil, last(gen_nil:cons3_0(0)), gen_nil:cons3_0(0)) →RΩ(1)
gen_nil:cons3_0(0)

Induction Step:
rev(gen_nil:cons3_0(+(n1160_0, 1)), gen_nil:cons3_0(0)) →RΩ(1)
if(isEmpty(gen_nil:cons3_0(+(n1160_0, 1))), dropLast(gen_nil:cons3_0(+(n1160_0, 1))), append(gen_nil:cons3_0(0), last(gen_nil:cons3_0(+(n1160_0, 1)))), gen_nil:cons3_0(0)) →RΩ(1)
if(false, dropLast(gen_nil:cons3_0(+(1, n1160_0))), append(gen_nil:cons3_0(0), last(gen_nil:cons3_0(+(1, n1160_0)))), gen_nil:cons3_0(0)) →LΩ(1 + n11600)
if(false, gen_nil:cons3_0(n1160_0), append(gen_nil:cons3_0(0), last(gen_nil:cons3_0(+(1, n1160_0)))), gen_nil:cons3_0(0)) →LΩ(1 + n11600)
if(false, gen_nil:cons3_0(n1160_0), append(gen_nil:cons3_0(0), gen_nil:cons3_0(0)), gen_nil:cons3_0(0)) →LΩ(1)
if(false, gen_nil:cons3_0(n1160_0), gen_nil:cons3_0(+(0, 0)), gen_nil:cons3_0(0)) →RΩ(1)
rev(gen_nil:cons3_0(n1160_0), gen_nil:cons3_0(0)) →IH
gen_nil:cons3_0(0)

We have rt ∈ Ω(n2) and sz ∈ O(n). Thus, we have ircR ∈ Ω(n2).

(17) Complex Obligation (BEST)

(18) Obligation:

TRS:
Rules:
isEmpty(nil) → true
isEmpty(cons(x, xs)) → false
last(cons(x, nil)) → x
last(cons(x, cons(y, ys))) → last(cons(y, ys))
dropLast(nil) → nil
dropLast(cons(x, nil)) → nil
dropLast(cons(x, cons(y, ys))) → cons(x, dropLast(cons(y, ys)))
append(nil, ys) → ys
append(cons(x, xs), ys) → cons(x, append(xs, ys))
reverse(xs) → rev(xs, nil)
rev(xs, ys) → if(isEmpty(xs), dropLast(xs), append(ys, last(xs)), ys)
if(true, xs, ys, zs) → zs
if(false, xs, ys, zs) → rev(xs, ys)

Types:
isEmpty :: nil:cons → true:false
nil :: nil:cons
true :: true:false
cons :: nil:cons → nil:cons → nil:cons
false :: true:false
last :: nil:cons → nil:cons
dropLast :: nil:cons → nil:cons
append :: nil:cons → nil:cons → nil:cons
reverse :: nil:cons → nil:cons
rev :: nil:cons → nil:cons → nil:cons
if :: true:false → nil:cons → nil:cons → nil:cons → nil:cons
hole_true:false1_0 :: true:false
hole_nil:cons2_0 :: nil:cons
gen_nil:cons3_0 :: Nat → nil:cons

Lemmas:
last(gen_nil:cons3_0(+(1, n5_0))) → gen_nil:cons3_0(0), rt ∈ Ω(1 + n50)
dropLast(gen_nil:cons3_0(+(1, n198_0))) → gen_nil:cons3_0(n198_0), rt ∈ Ω(1 + n1980)
append(gen_nil:cons3_0(n545_0), gen_nil:cons3_0(b)) → gen_nil:cons3_0(+(n545_0, b)), rt ∈ Ω(1 + n5450)
rev(gen_nil:cons3_0(n1160_0), gen_nil:cons3_0(0)) → gen_nil:cons3_0(0), rt ∈ Ω(1 + n11600 + n116002)

Generator Equations:
gen_nil:cons3_0(0) ⇔ nil
gen_nil:cons3_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons3_0(x))

No more defined symbols left to analyse.

(19) LowerBoundsProof (EQUIVALENT transformation)

The lowerbound Ω(n2) was proven with the following lemma:
rev(gen_nil:cons3_0(n1160_0), gen_nil:cons3_0(0)) → gen_nil:cons3_0(0), rt ∈ Ω(1 + n11600 + n116002)

(20) BOUNDS(n^2, INF)

(21) Obligation:

TRS:
Rules:
isEmpty(nil) → true
isEmpty(cons(x, xs)) → false
last(cons(x, nil)) → x
last(cons(x, cons(y, ys))) → last(cons(y, ys))
dropLast(nil) → nil
dropLast(cons(x, nil)) → nil
dropLast(cons(x, cons(y, ys))) → cons(x, dropLast(cons(y, ys)))
append(nil, ys) → ys
append(cons(x, xs), ys) → cons(x, append(xs, ys))
reverse(xs) → rev(xs, nil)
rev(xs, ys) → if(isEmpty(xs), dropLast(xs), append(ys, last(xs)), ys)
if(true, xs, ys, zs) → zs
if(false, xs, ys, zs) → rev(xs, ys)

Types:
isEmpty :: nil:cons → true:false
nil :: nil:cons
true :: true:false
cons :: nil:cons → nil:cons → nil:cons
false :: true:false
last :: nil:cons → nil:cons
dropLast :: nil:cons → nil:cons
append :: nil:cons → nil:cons → nil:cons
reverse :: nil:cons → nil:cons
rev :: nil:cons → nil:cons → nil:cons
if :: true:false → nil:cons → nil:cons → nil:cons → nil:cons
hole_true:false1_0 :: true:false
hole_nil:cons2_0 :: nil:cons
gen_nil:cons3_0 :: Nat → nil:cons

Lemmas:
last(gen_nil:cons3_0(+(1, n5_0))) → gen_nil:cons3_0(0), rt ∈ Ω(1 + n50)
dropLast(gen_nil:cons3_0(+(1, n198_0))) → gen_nil:cons3_0(n198_0), rt ∈ Ω(1 + n1980)
append(gen_nil:cons3_0(n545_0), gen_nil:cons3_0(b)) → gen_nil:cons3_0(+(n545_0, b)), rt ∈ Ω(1 + n5450)
rev(gen_nil:cons3_0(n1160_0), gen_nil:cons3_0(0)) → gen_nil:cons3_0(0), rt ∈ Ω(1 + n11600 + n116002)

Generator Equations:
gen_nil:cons3_0(0) ⇔ nil
gen_nil:cons3_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons3_0(x))

No more defined symbols left to analyse.

(22) LowerBoundsProof (EQUIVALENT transformation)

The lowerbound Ω(n2) was proven with the following lemma:
rev(gen_nil:cons3_0(n1160_0), gen_nil:cons3_0(0)) → gen_nil:cons3_0(0), rt ∈ Ω(1 + n11600 + n116002)

(23) BOUNDS(n^2, INF)

(24) Obligation:

TRS:
Rules:
isEmpty(nil) → true
isEmpty(cons(x, xs)) → false
last(cons(x, nil)) → x
last(cons(x, cons(y, ys))) → last(cons(y, ys))
dropLast(nil) → nil
dropLast(cons(x, nil)) → nil
dropLast(cons(x, cons(y, ys))) → cons(x, dropLast(cons(y, ys)))
append(nil, ys) → ys
append(cons(x, xs), ys) → cons(x, append(xs, ys))
reverse(xs) → rev(xs, nil)
rev(xs, ys) → if(isEmpty(xs), dropLast(xs), append(ys, last(xs)), ys)
if(true, xs, ys, zs) → zs
if(false, xs, ys, zs) → rev(xs, ys)

Types:
isEmpty :: nil:cons → true:false
nil :: nil:cons
true :: true:false
cons :: nil:cons → nil:cons → nil:cons
false :: true:false
last :: nil:cons → nil:cons
dropLast :: nil:cons → nil:cons
append :: nil:cons → nil:cons → nil:cons
reverse :: nil:cons → nil:cons
rev :: nil:cons → nil:cons → nil:cons
if :: true:false → nil:cons → nil:cons → nil:cons → nil:cons
hole_true:false1_0 :: true:false
hole_nil:cons2_0 :: nil:cons
gen_nil:cons3_0 :: Nat → nil:cons

Lemmas:
last(gen_nil:cons3_0(+(1, n5_0))) → gen_nil:cons3_0(0), rt ∈ Ω(1 + n50)
dropLast(gen_nil:cons3_0(+(1, n198_0))) → gen_nil:cons3_0(n198_0), rt ∈ Ω(1 + n1980)
append(gen_nil:cons3_0(n545_0), gen_nil:cons3_0(b)) → gen_nil:cons3_0(+(n545_0, b)), rt ∈ Ω(1 + n5450)

Generator Equations:
gen_nil:cons3_0(0) ⇔ nil
gen_nil:cons3_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons3_0(x))

No more defined symbols left to analyse.

(25) LowerBoundsProof (EQUIVALENT transformation)

The lowerbound Ω(n1) was proven with the following lemma:
last(gen_nil:cons3_0(+(1, n5_0))) → gen_nil:cons3_0(0), rt ∈ Ω(1 + n50)

(26) BOUNDS(n^1, INF)

(27) Obligation:

TRS:
Rules:
isEmpty(nil) → true
isEmpty(cons(x, xs)) → false
last(cons(x, nil)) → x
last(cons(x, cons(y, ys))) → last(cons(y, ys))
dropLast(nil) → nil
dropLast(cons(x, nil)) → nil
dropLast(cons(x, cons(y, ys))) → cons(x, dropLast(cons(y, ys)))
append(nil, ys) → ys
append(cons(x, xs), ys) → cons(x, append(xs, ys))
reverse(xs) → rev(xs, nil)
rev(xs, ys) → if(isEmpty(xs), dropLast(xs), append(ys, last(xs)), ys)
if(true, xs, ys, zs) → zs
if(false, xs, ys, zs) → rev(xs, ys)

Types:
isEmpty :: nil:cons → true:false
nil :: nil:cons
true :: true:false
cons :: nil:cons → nil:cons → nil:cons
false :: true:false
last :: nil:cons → nil:cons
dropLast :: nil:cons → nil:cons
append :: nil:cons → nil:cons → nil:cons
reverse :: nil:cons → nil:cons
rev :: nil:cons → nil:cons → nil:cons
if :: true:false → nil:cons → nil:cons → nil:cons → nil:cons
hole_true:false1_0 :: true:false
hole_nil:cons2_0 :: nil:cons
gen_nil:cons3_0 :: Nat → nil:cons

Lemmas:
last(gen_nil:cons3_0(+(1, n5_0))) → gen_nil:cons3_0(0), rt ∈ Ω(1 + n50)
dropLast(gen_nil:cons3_0(+(1, n198_0))) → gen_nil:cons3_0(n198_0), rt ∈ Ω(1 + n1980)

Generator Equations:
gen_nil:cons3_0(0) ⇔ nil
gen_nil:cons3_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons3_0(x))

No more defined symbols left to analyse.

(28) LowerBoundsProof (EQUIVALENT transformation)

The lowerbound Ω(n1) was proven with the following lemma:
last(gen_nil:cons3_0(+(1, n5_0))) → gen_nil:cons3_0(0), rt ∈ Ω(1 + n50)

(29) BOUNDS(n^1, INF)

(30) Obligation:

TRS:
Rules:
isEmpty(nil) → true
isEmpty(cons(x, xs)) → false
last(cons(x, nil)) → x
last(cons(x, cons(y, ys))) → last(cons(y, ys))
dropLast(nil) → nil
dropLast(cons(x, nil)) → nil
dropLast(cons(x, cons(y, ys))) → cons(x, dropLast(cons(y, ys)))
append(nil, ys) → ys
append(cons(x, xs), ys) → cons(x, append(xs, ys))
reverse(xs) → rev(xs, nil)
rev(xs, ys) → if(isEmpty(xs), dropLast(xs), append(ys, last(xs)), ys)
if(true, xs, ys, zs) → zs
if(false, xs, ys, zs) → rev(xs, ys)

Types:
isEmpty :: nil:cons → true:false
nil :: nil:cons
true :: true:false
cons :: nil:cons → nil:cons → nil:cons
false :: true:false
last :: nil:cons → nil:cons
dropLast :: nil:cons → nil:cons
append :: nil:cons → nil:cons → nil:cons
reverse :: nil:cons → nil:cons
rev :: nil:cons → nil:cons → nil:cons
if :: true:false → nil:cons → nil:cons → nil:cons → nil:cons
hole_true:false1_0 :: true:false
hole_nil:cons2_0 :: nil:cons
gen_nil:cons3_0 :: Nat → nil:cons

Lemmas:
last(gen_nil:cons3_0(+(1, n5_0))) → gen_nil:cons3_0(0), rt ∈ Ω(1 + n50)

Generator Equations:
gen_nil:cons3_0(0) ⇔ nil
gen_nil:cons3_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons3_0(x))

No more defined symbols left to analyse.

(31) LowerBoundsProof (EQUIVALENT transformation)

The lowerbound Ω(n1) was proven with the following lemma:
last(gen_nil:cons3_0(+(1, n5_0))) → gen_nil:cons3_0(0), rt ∈ Ω(1 + n50)

(32) BOUNDS(n^1, INF)